home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / clone200.zip / USER.CMD < prev    next >
OS/2 REXX Batch file  |  1996-11-06  |  669b  |  30 lines

  1. @echo on
  2. REM
  3. REM  User Function from Clone Cleaner (CloneCln.Exe)
  4. REM
  5. REM  Parameters  %1 = Filename, %2=A | B,  %3=FileSize */
  6. REM
  7. if %2. == A. goto ascii
  8. if %2. == B. goto binary
  9.  
  10. :ascii
  11.     echo  Ascii File  %1  %3  >>  user.txt
  12.  
  13.     echo ---------------------------------------------------->  temp1.txt
  14.     echo *** Clone Cleaner Says THIS FILE HAS DUPLICATES *** >  temp1.txt
  15.     echo ---------------------------------------------------->> temp1.txt
  16.     copy temp1.txt+%1  temp2.txt
  17.     del %1
  18.     copy temp2.txt %1
  19.     del  temp1.txt
  20.     del  temp2.txt
  21.  
  22. goto done
  23.  
  24. :binary
  25.     echo  Binary File %1  %3  >>  user.txt
  26. goto done
  27.  
  28. :done
  29.  
  30.